home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 1.toast / Sample Code / Contributed / SpriteWorld / SpriteWorld Examples / Stars / Stars.h < prev    next >
Encoding:
Text File  |  2000-10-06  |  605 b   |  35 lines  |  [TEXT/CWIE]

  1. ///--------------------------------------------------------------------------------------
  2. // Stars.h
  3. //
  4. // By: Vern Jensen
  5. ///--------------------------------------------------------------------------------------
  6.  
  7.  
  8. #ifndef __WINDOWS__
  9. #include <Windows.h>
  10. #endif
  11.  
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16.  
  17.  
  18. void    main( void );
  19. void    CreateSpriteWorld( void );
  20. void    CreateSprites( void );
  21.  
  22. void    RunAnimation( void );
  23. void    ShutDown( void );
  24. void    MyCleanUpFunction( void );
  25.  
  26. SW_FUNC void BallSpriteMoveProc(SpritePtr ballSpriteP);
  27.  
  28. void    SetUpStars( void );
  29. void    MoveStars( void );
  30.  
  31.  
  32. #ifdef __cplusplus
  33. }
  34. #endif
  35.